#include "config.h"
-#include <netinet/in.h>
-#include <unistd.h>
-
-#include "gdk.h"
-#include "gdkwayland.h"
-#include "gdkwaylandsurface.h"
+#include "gdksurface-wayland.h"
#include "gdkdeviceprivate.h"
#include "gdkdisplay-wayland.h"
#include <string.h>
#include <errno.h>
+#include <netinet/in.h>
+#include <unistd.h>
+
#define SURFACE_IS_TOPLEVEL(surface) TRUE
#define MAX_WL_BUFFER_SIZE (4083) /* 4096 minus header, string argument length and NUL byte */
--- /dev/null
+/* gdksurface-wayland.h: Private header for GdkWaylandSurface
+ *
+ * Copyright 2020 GNOME Foundation
+ *
+ * SPDX-License-Identifier: LGPL-2.1-or-later
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include "gdkwaylandsurface.h"
+
+G_BEGIN_DECLS
+
+void gdk_wayland_toplevel_set_dbus_properties_libgtk_only (GdkToplevel *toplevel,
+ const char *application_id,
+ const char *app_menu_path,
+ const char *menubar_path,
+ const char *window_object_path,
+ const char *application_object_path,
+ const char *unique_bus_name);
+
+void gdk_wayland_toplevel_announce_csd (GdkToplevel *toplevel);
+
+gboolean gdk_wayland_toplevel_inhibit_idle (GdkToplevel *toplevel);
+void gdk_wayland_toplevel_uninhibit_idle (GdkToplevel *toplevel);
+
+G_END_DECLS
GDK_AVAILABLE_IN_ALL
struct wl_surface *gdk_wayland_surface_get_wl_surface (GdkSurface *surface);
-GDK_AVAILABLE_IN_ALL
-void gdk_wayland_toplevel_set_dbus_properties_libgtk_only (GdkToplevel *toplevel,
- const char *application_id,
- const char *app_menu_path,
- const char *menubar_path,
- const char *window_object_path,
- const char *application_object_path,
- const char *unique_bus_name);
-
typedef void (*GdkWaylandToplevelExported) (GdkToplevel *toplevel,
const char *handle,
gpointer user_data);
void gdk_wayland_toplevel_set_application_id (GdkToplevel *toplevel,
const char *application_id);
-void gdk_wayland_toplevel_announce_csd (GdkToplevel *toplevel);
-
-gboolean gdk_wayland_toplevel_inhibit_idle (GdkToplevel *toplevel);
-void gdk_wayland_toplevel_uninhibit_idle (GdkToplevel *toplevel);
-
G_END_DECLS
#endif /* __GDK_WAYLAND_SURFACE_H__ */
#include <gdk/wayland/gdkwayland.h>
#include <gdk/wayland/gdkdisplay-wayland.h>
+#include <gdk/wayland/gdksurface-wayland.h>
#include <gdk/wayland/idle-inhibit-unstable-v1-client-protocol.h>
typedef struct
#ifdef GDK_WINDOWING_WAYLAND
#include "wayland/gdkwayland.h"
+#include "wayland/gdksurface-wayland.h"
#endif
#ifdef GDK_WINDOWING_BROADWAY